379b1b9111d375a7b529c99749da5e98fd436a76,hazelcast/src/main/java/com/hazelcast/collection/operations/SetBackupOperation.java,SetBackupOperation,run,#,48

Before Change



    public void run() throws Exception {
        CollectionRecord record = new CollectionRecord(recordId, isBinary() ? value : toObject(value));
        List<CollectionRecord> list = (List<CollectionRecord>) getOrCreateCollectionWrapper();
        list.set(index, record);
        response = true;
    }

After Change



    public void run() throws Exception {
        CollectionRecord record = new CollectionRecord(recordId, isBinary() ? value : toObject(value));
        List<CollectionRecord> list = (List<CollectionRecord>) getOrCreateCollectionWrapper().getCollection();
        list.set(index, record);
        response = true;
    }